home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 58 / pcpp58a.iso / extras / quake 3 source / Q3A_ToolSource.exe / Main / RADEditView.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-01-02  |  1.2 KB  |  64 lines

  1. // RADEditView.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Radiant.h"
  6. #include "RADEditView.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CRADEditView
  16.  
  17. IMPLEMENT_DYNCREATE(CRADEditView, CEditView)
  18.  
  19. CRADEditView::CRADEditView()
  20. {
  21. }
  22.  
  23. CRADEditView::~CRADEditView()
  24. {
  25. }
  26.  
  27.  
  28. BEGIN_MESSAGE_MAP(CRADEditView, CEditView)
  29.     //{{AFX_MSG_MAP(CRADEditView)
  30.     ON_CONTROL_REFLECT(EN_CHANGE, OnChange)
  31.     //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33.  
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CRADEditView drawing
  36.  
  37. void CRADEditView::OnDraw(CDC* pDC)
  38. {
  39.     CDocument* pDoc = GetDocument();
  40.     // TODO: add draw code here
  41. }
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CRADEditView diagnostics
  45.  
  46. #ifdef _DEBUG
  47. void CRADEditView::AssertValid() const
  48. {
  49.     CEditView::AssertValid();
  50. }
  51.  
  52. void CRADEditView::Dump(CDumpContext& dc) const
  53. {
  54.     CEditView::Dump(dc);
  55. }
  56. #endif //_DEBUG
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59. // CRADEditView message handlers
  60.  
  61. void CRADEditView::OnChange() 
  62. {
  63. }
  64.